home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1999 March
/
EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso
/
earcd
/
devel
/
vbcc-ppc
/
machines
/
amigappc
/
include
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-01
|
153b
|
13 lines
/* setjmp.h - PowerPC */
#ifndef __SETJMP_H
#define __SETJMP_H 1
typedef int jmp_buf[24];
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif